blob: fe07460035c04f02465c42d6acdcd97dd7f3e01d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
import * as React from "react"
import { type SearchParams } from "@/types/table"
import { getValidFilters } from "@/lib/data-table"
import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
import { Separator } from "@/components/ui/separator"
import { searchParamsCache } from "@/lib/roles/validations"
import { searchParamsCache as searchParamsCache2 } from "@/lib/admin-users/validations"
import { RolesTable } from "@/lib/roles/table/roles-table"
import { getRolesWithCount } from "@/lib/roles/services"
import { getUsersAll } from "@/lib/users/service"
interface IndexPageProps {
searchParams: Promise<SearchParams>
}
export default async function UserTable(props: IndexPageProps) {
const searchParams = await props.searchParams
const search = searchParamsCache.parse(searchParams)
const search2 = searchParamsCache2.parse(searchParams)
const validFilters = getValidFilters(search.filters)
const promises = Promise.all([
getRolesWithCount({
...search,
filters: validFilters,
}),
])
const promises2 = Promise.all([
getUsersAll({
...search2,
filters: validFilters,
}, "evcp"),
])
return (
<React.Suspense
fallback={
<DataTableSkeleton
columnCount={6}
searchableColumnCount={1}
filterableColumnCount={2}
cellWidths={["10rem", "40rem", "12rem", "12rem", "8rem", "8rem"]}
shrinkZero
/>
}
>
<div className="space-y-6">
<div>
<h3 className="text-lg font-medium">Role Management</h3>
<p className="text-sm text-muted-foreground">
역할을 생성하고 역할에 유저를 할당할 수 있는 페이지입니다. 역할에 메뉴의 접근 권한 역시 할당할 수 있습니다.
</p>
</div>
<Separator />
<RolesTable promises={promises} promises2={promises2} />
</div>
</React.Suspense>
)
}
|